home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / con2.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  863 b   |  28 lines

  1. .TH CON2
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. CON2
  5.  
  6.  
  7.  
  8.  PolygonType CON2( VectorType Center, VectorType Direction,
  9.                    NumericType Radius1, NumericType Radius2 )
  10.  
  11. Creates a truncated CONE geometric object, defined by Center as the
  12. center of the main base of the CONE, Direction as both the CONE's axis
  13. and the length of CONE, and the two radii Radius1/2 of the two bases of
  14. the CONE.
  15.  
  16. Unlike the regular cone (CONE) constructor which has inherited
  17. discontinuities in its generated normals at the apex, CON2 can be used to
  18. form a (truncated) cone with continuous normals. 
  19. See RESOLUTION for the accuracy of the CON2 approximation as a polygonal
  20. model.
  21.  
  22. Example:
  23.  
  24.     Cone2 = CON2( vector( 0, 0, -1 ), vector( 0, 0, 4 ), 2, 1 );
  25.  
  26. constructs a truncated cone with bases parallel to the XY plane at
  27. Z = -1 and Z = 3, and with radii of 2 and 1 respectively.
  28.